body {
  margin: 0;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  min-height: 50vh;

}

.site-footer .social-links,
.site-footer .copyright,
.site-footer .footer-logo {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400
}


.header {
  position: relative;
  text-align: center;
  background: linear-gradient(60deg, rgba(84,58,183,1) 0%, rgba(0,172,193,1) 100%);
  color: white;
  flex: 1 0 auto;
}

.content {
  flex: 1 0 auto;
  padding: 20px;
  text-align: center;
  background-color: white;
}

/* ========== FOOTER WITH BACKGROUND WAVES ========== */
.site-footer {
  background-color:#ffd1bf;
  margin-top: 0;
  position: relative;
  flex-shrink: 0;
}

.footer-waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  transform: translateY(-50%);
  z-index: 1;
}

.waves {
  position: relative;
  width: 100%;
  height: 90px;
  min-height: 50px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.social-links a {
  color: #3B0B2E;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #e29578;
  transform: translateY(-2px);
}

.copyright {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #3B0B2E;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-logo-img {
  height: 60px;
  object-fit: contain;
}

.credits {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #6b4f4f;
}

.credits strong {
  color: #3B0B2E;
  font-weight: 600;
}

/* Wave Animation */
.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
  fill: #fff1f6;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
  opacity: 0.7;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
  opacity: 0.5;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
  opacity: 0.3;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
  opacity: 1;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .social-links {
    order: 2;
    justify-content: center;
    width: 100%;
  }
  
  .footer-logo {
    order: 1;
    align-items: center;
    width: 100%;
  }
  
  .copyright {
    order: 3;
    justify-content: center;
    width: 100%;
  }
  
  .footer-waves {
    height: 0px;
  }
}

@media (max-width: 768px) {
  .footer-waves {
    height: 50px;          
    top: auto;              
    bottom: 1rem;             
    transform: translateY(0); 
  }
}
